/* =========================================
   ARMA ÜRÜN KATEGORİLERİ - YENİ TASARIM
========================================= */

.arma-cat-section {
    width: 100%;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(255, 128, 0, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    overflow: hidden;
}

.arma-cat-container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.arma-cat-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.arma-cat-head span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.arma-cat-head h2 {
    margin: 0 0 14px;
    color: #0b2f3f;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.arma-cat-head p {
    margin: 0;
    color: #687782;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.arma-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.arma-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 470px;
    background: #ffffff;
    border: 1px solid rgba(11, 47, 63, 0.10);
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 18px 50px rgba(11, 47, 63, 0.08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.arma-cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.13), transparent 38%),
        linear-gradient(315deg, rgba(11, 47, 63, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.arma-cat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 0, 0.35);
    box-shadow: 0 28px 70px rgba(11, 47, 63, 0.16);
}

.arma-cat-card:hover::before {
    opacity: 1;
}

.arma-cat-image {
    position: relative;
    height: 310px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.arma-cat-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 34px;
    width: 58%;
    height: 22px;
    transform: translateX(-50%);
    background: rgba(11, 47, 63, 0.14);
    filter: blur(18px);
    border-radius: 50%;
    z-index: 1;
}

.arma-cat-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 245px;
    object-fit: contain;
    transition: transform .45s ease;
}

.arma-cat-card:hover .arma-cat-image img {
    transform: scale(1.06);
}

.arma-cat-content {
    position: relative;
    z-index: 2;
    min-height: 160px;
    padding: 26px 28px 28px;
    background: #0b111d;
    color: #ffffff;
}

.arma-cat-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 28px;
    margin-bottom: 14px;
    border-radius: 50px;
    background: rgba(255, 122, 0, 0.14);
    color: #ff8a00;
    font-size: 13px;
    font-weight: 800;
}

.arma-cat-content h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.15;
    font-weight: 900;
}

.arma-cat-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.arma-cat-content em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8a00;
    font-style: normal;
    font-size: 14px;
    font-weight: 800;
}

.arma-cat-content em::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
    transition: transform .3s ease;
}

.arma-cat-card:hover .arma-cat-content em::after {
    transform: translateX(5px);
}

/* SCROLL ANIMATION */
.arma-cat-card,
.arma-cat-head {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.arma-cat-card.arma-cat-show,
.arma-cat-head.arma-cat-show {
    opacity: 1;
    transform: translateY(0);
}

/* TABLET */
@media (max-width: 1100px) {
    .arma-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arma-cat-card {
        min-height: 450px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .arma-cat-section {
        padding: 60px 0 70px;
    }

    .arma-cat-head {
        margin-bottom: 28px;
    }

    .arma-cat-head h2 {
        font-size: 34px;
    }

    .arma-cat-head p {
        font-size: 15px;
    }

    .arma-cat-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .arma-cat-card {
        min-height: auto;
        border-radius: 22px;
    }

    .arma-cat-image {
        height: 275px;
        padding: 28px;
    }

    .arma-cat-image img {
        max-height: 215px;
    }

    .arma-cat-content {
        padding: 22px 22px 24px;
    }

    .arma-cat-content h3 {
        font-size: 21px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .arma-cat-container {
        width: 90%;
    }

    .arma-cat-image {
        height: 245px;
    }

    .arma-cat-image img {
        max-height: 190px;
    }
}
/* =========================================
   ÜRÜNLERİMİZ BANNER - GARANTİ KOYU GÖLGE
========================================= */

.arma-products-hero {
    position: relative !important;
    min-height: 430px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;

    /* Görseli değiştirmeden üstüne koyu gölge verir */
    box-shadow:
        inset 0 0 0 9999px rgba(4, 10, 20, 0.42),
        inset 620px 0 360px rgba(4, 10, 20, 0.62),
        inset -260px 0 280px rgba(4, 10, 20, 0.22) !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Önceki açık overlay varsa kapatma, üstüne tekrar aç */
.arma-products-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    pointer-events: none !important;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 20, 0.72) 0%,
            rgba(4, 10, 20, 0.55) 38%,
            rgba(4, 10, 20, 0.28) 68%,
            rgba(4, 10, 20, 0.12) 100%
        ) !important;
}

/* Yazılar üstte kalsın */
.arma-products-container,
.arma-products-hero-inner {
    position: relative !important;
    z-index: 5 !important;
}

/* Yazı okunurluğu */
.arma-products-hero-inner span {
    color: #e87511 !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(232,117,17,.45) !important;
    border-radius: 100px !important;
    padding: 8px 18px !important;
}

.arma-products-hero-inner h1 {
    color: #fff !important;
    text-shadow: 0 5px 20px rgba(0,0,0,.45) !important;
}

.arma-products-hero-inner p {
    color: rgba(255,255,255,.95) !important;
    text-shadow: 0 4px 16px rgba(0,0,0,.45) !important;
}